CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - ACM 算法

搜索资源列表

  1. ACM

    0下载:
  2. 在一个圆形操场的四周摆放着n 堆石子。现要将石子有次序地合并成一堆。规定每次只能选相邻的2 堆石子合并成新的一堆,并将新的一堆石子数记为该次合并的得分。试设计一个算法,计算出将n堆石子合并成一堆的最小得分和最大得分。 例如,图1所示的4堆石,每堆石子数(从最上面的一堆数起,顺时针数)依次为4、5、9、4。则3次合并得分总和最小的方案为图2,得分总和最大的方案为图3。 编程任务: 对于给定n堆石子,编程计算合并成一堆的最小得分和最大得分。 -Playground in
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-03-31
    • 文件大小:4097
    • 提供者:张四四
  1. ninegird_src

    0下载:
  2. ACM/ICPC题目八位码算法实现 ACM/ICPC题目八位码算法实现-ACM/ICPC Title 8 yards algorithm ACM/ICPC Title 8 yards algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:33101
    • 提供者:李平
  1. modelzsu

    0下载:
  2. 浙大ACM的比赛模板,很多经典的算法,涵盖了很多方面,计算几何,Dp,搜索,数论-ACM Zheda game template, many of the classic algorithms, covering many areas, computational geometry, Dp, search, number theory
  3. 所属分类:Java Develop

    • 发布日期:2017-04-03
    • 文件大小:72894
    • 提供者:xnby
  1. suannfa

    0下载:
  2. 各种典型的算法集锦,对程序员来说是莫大的帮助,对acm爱好者跟不用说-Highlights of typical algorithms for programmers is a great help, for enthusiasts with acm Needless to say
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-17
    • 文件大小:191187
    • 提供者:toful
  1. ACM_super_source

    0下载:
  2. ACM源码集合(不是音频编码的ACM), 里面有些很经典的算法代码, 参考ACM竞赛的,有很大的参考价值,需要的可以下载参考-ACM-source collection (not the audio coding of ACM), which some of the classic algorithm code, reference ACM contest, have a great reference value, can download the necessary reference
  3. 所属分类:Audio program

    • 发布日期:2017-05-14
    • 文件大小:581618
    • 提供者:yanxiaobin
  1. acm_code

    0下载:
  2. 一些ACM基本算法的测试源码,可做简单的模板用,共11个。-Some of the basic algorithm ACM test source, the template can be easy to use, a total of 11.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-15
    • 文件大小:7429
    • 提供者:ffx
  1. acmtemplate

    0下载:
  2. acm是一门相当富有技术含量的大学生竞赛,这是其中的一些常见算法模板,希望对大家有帮助-templates for acm problems
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-17
    • 文件大小:80985
    • 提供者:zhuo
  1. acmtemplate

    0下载:
  2. acm竞赛的常用模板,非常的全面,对算法的各个方面都有涉及,阅读以后能极大的提高自己的算法能力-acm contest common template, a very comprehensive on all aspects of algorithms are involved, to be able to read a great method to improve their ability to
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-25
    • 文件大小:81496
    • 提供者:dawu
  1. ACM

    0下载:
  2. ACM经典算法 ACM经典算法-ACM classic algorithm ACM classic algorithmACM classic algorithm
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-04
    • 文件大小:140663
    • 提供者:
  1. acm

    0下载:
  2. 海龟图问题 基本的算法 最简单的算法 大家-Map turtles algorithm basically the simplest algorithm you a good look at
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:1371
    • 提供者:董超
  1. ACM

    0下载:
  2. 处理45以下的超级合数的优化算法,时间访问度低于5秒-highly composite number
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-03
    • 文件大小:118484
    • 提供者:yuyang
  1. mst

    0下载:
  2. MST算法就是最小生成树算法! 在ACM中这个应该是比较简单的一个算法! 大家好好学习吧! -MST algorithm is the minimum spanning tree algorithm! In ACM in this should be a relatively simple algorithm! We can learn from it!
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:17268
    • 提供者:邱雄
  1. OilingCar

    0下载:
  2. acm算法设计 描述: 一辆汽车加满油后可行驶n公里。旅途中有若干个加油站。设计一个有效算法,指出应在哪些加油站停靠加油,使沿途加油次数最少。 对于给定的n和k个加油站位置,编程计算最少加油次数。 输入: 第一行有2 个正整数n和k,表示汽车加满油后可行驶n公里,且旅途中有k个加油站。接下来的1 行中,有k+1 个整数,表示第k个加油站与第 k-1 个加油站之间的距离。第0 个加油站表示出发地,汽车已加满油。第k+1 个加油站表示目的地。 输出: 的最少加油次
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:197232
    • 提供者:张波
  1. kejian

    0下载:
  2. ACM经典教程——刘汝佳的算法艺术一书(黑书)的配套课件-ACM Classic Guide- Liu Jia' s algorithm art book (black book) supporting courseware
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-05-24
    • 文件大小:7734013
    • 提供者:starwan
  1. ACM_DP

    1下载:
  2. ACM论文,,,关于动态规划的两篇文章-ACM papers........about DP,two papers
  3. 所属分类:software engineering

    • 发布日期:2017-04-05
    • 文件大小:455169
    • 提供者:hutao
  1. Euclidean

    0下载:
  2. 扩展欧几里德定理和中国剩余定理,ACM算法课件,比较简洁-Extended Euclidean theorems and Chinese Remainder Theorem, ACM algorithm courseware, simple comparison
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-27
    • 文件大小:16696
    • 提供者:liudiao
  1. PKU1655

    0下载:
  2. PKU1655解题报告 动态规划算法、dp算法、ACM题-PKU1655 dynamic programming algorithm for solving the report, dp algorithm, ACM title
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:11224
    • 提供者:菲戈
  1. ACM_4

    0下载:
  2. ACM的算法参考书,涉及最短路径、最小生成树、网络流、可行遍性问题等-ACM Algorithm Book
  3. 所属分类:Algorithm

    • 发布日期:2017-05-19
    • 文件大小:5240152
    • 提供者:
  1. About_ACM

    0下载:
  2. 这是ACM的入门教程,对于想学习ACM的初学者有很大帮助,而对于想通过ACM学习数据结构和算法的人也很有帮助~!-It is ACM s entry tutorial for beginners who want to learn ACM helps a lot, but for want ACM to learn data structures and algorithms were also very helpful ~!
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-05-19
    • 文件大小:5307308
    • 提供者:Harry
  1. Prentice_Hall-Expert_C_Programming_Deep_Secrets.ra

    0下载:
  2. 这是北大ACM平台官方撰写书籍,详细说明了一些经典题目和算法,网上很难下到~~!-This is a platform for the official Peking University ACM write books detailing some of the classic topics and algorithms, online it' s very hard to ~ ~!
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-09
    • 文件大小:2073694
    • 提供者:Harry
« 1 2 3 4 5 67 8 9 10 11 ... 34 »
搜珍网 www.dssz.com